home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d5xx
/
d576
/
termii.lha
/
TermII
/
English
/
ARexx Examples
/
test_wait.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1991-12-22
|
1KB
|
33 lines
/* */
/* test_wait.rexx */
/* */
/* Test rexx_wait and memory */
/* */
address TERM
rexx_memory_on /* Turn on memory mode */
serial_send '"ATDT3600\n"'
say 'Dialing...'
rexx_delay 5 /* To avoid confusion between Transpac answer */
/* and modem answer */
rexx_wait 30 2
say 'memory = ' memory
serial_send '"1751111\n"'
say 'Going in Calvacom...'
rexx_wait 5 2
say 'memory = ' memory
serial_send '"eg19\n"'
say 'Entering access code...'
rexx_wait 5 2
say 'memory = ' memory
serial_send '"mot-de-passe\n"'
say 'Entering password...'
rexx_wait 5 2
say 'memory = ' memory
serial_send '"/q tout\n"'
say 'Oh, I stop here'